home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / plnk081.zip / pilot-link.0.8.1 / Perl5 / Makefile.PL.in next >
Makefile  |  1997-07-14  |  506b  |  21 lines

  1. use ExtUtils::MakeMaker;
  2. # See lib/ExtUtils/MakeMaker.pm for details of how to influence
  3. # the contents of the Makefile that is written.
  4.  
  5. $prefix = "@prefix@";
  6. $exec_prefix = "@exec_prefix@";
  7. $libdir = "@libdir@";
  8.  
  9. unless ((-e "$libdir/libpisock.la") or (-e "$libdir/libpisock.a")) {
  10.     die "pilot-link must be installed before PDA::Pilot can be built\n";
  11. }
  12.  
  13. $lib = "-L$libdir -lpisock";
  14.  
  15. WriteMakefile(
  16.     'NAME'    => 'PDA::Pilot',
  17.     'VERSION'    => '0.1',
  18.     'LIBS'    => $lib,
  19.     'INC'    => '-I../include',
  20. );
  21.